5ebb7a1cee57c9dca756a86dccef3d7c3299d765,tests/src/test/java/alluxio/underfs/UnderStorageSystemInterfaceIntegrationTest.java,UnderStorageSystemInterfaceIntegrationTest,loadMetadata,#,418
Before Change
AlluxioURI file1URI = rootAlluxioURI.join("file1");
try {
client.createFile(file1URI, CreateFileOptions.defaults());
Assert.fail("create is expected to fail with FileAlreadyExistsException");
} catch (FileAlreadyExistsException e) {
Assert.assertEquals(
After Change
AlluxioURI file1URI = rootAlluxioURI.join("file1");
try {
client.createFile(file1URI, CreateFileOptions.defaults()).close();
Assert.fail("create is expected to fail with FileAlreadyExistsException");
} catch (FileAlreadyExistsException e) {
Assert.assertEquals(